home *** CD-ROM | disk | FTP | other *** search
/ Champak 122 / Vol 122.iso / games / super_cr.swf / scripts / DefineSprite_380 / frame_123 / DoAction.as
Encoding:
Text File  |  2011-01-06  |  138 b   |  9 lines

  1. ball.onEnterFrame = function()
  2. {
  3.    this._x += 80;
  4.    if(this._x > Stage.width + 20)
  5.    {
  6.       delete this.onEnterFrame;
  7.    }
  8. };
  9.